home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-119.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  66 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12384);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1363");
  13.  
  14.  name["english"] = "RHSA-2003-119: micq";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated mICQ packages are available which fix a remote crash.
  21.  
  22.   mICQ is an online messaging and conferencing program.
  23.  
  24.   mICQ 0.4.9 and earlier allows remote attackers to cause a denial of service
  25.   (crash) via malformed ICQ message types without a 0xFE separator character.
  26.  
  27.   Users of mICQ are advised to upgrade to these erratum packages containing
  28.   mICQ version 0.4.10.2 which is not vulnerable to this issue.
  29.  
  30.  
  31.  
  32.  
  33. Solution : http://rhn.redhat.com/errata/RHSA-2003-119.html
  34. Risk factor : High';
  35.  
  36.  script_description(english:desc["english"]);
  37.  
  38.  summary["english"] = "Check for the version of the micq packages";
  39.  script_summary(english:summary["english"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  44.  family["english"] = "Red Hat Local Security Checks";
  45.  script_family(english:family["english"]);
  46.  
  47.  script_dependencies("ssh_get_info.nasl");
  48.  
  49.  script_require_keys("Host/RedHat/rpm-list");
  50.  exit(0);
  51. }
  52.  
  53. include("rpm.inc");
  54. if ( rpm_check( reference:"micq-0.4.10.2-1", release:"RHEL2.1") )
  55. {
  56.  security_hole(0);
  57.  exit(0);
  58. }
  59.  
  60. if ( rpm_exists(rpm:"micq-", release:"RHEL2.1") )
  61. {
  62.  set_kb_item(name:"CVE-2002-1363", value:TRUE);
  63. }
  64.  
  65. set_kb_item(name:"RHSA-2003-119", value:TRUE);
  66.